* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ========== Kitchen Hero Section ========== */
/* Header Image Section */
.contact-hero {
    min-height: 30vh; /* Height aap adjust kar sakte hain */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url("../../../assets/Home Page/Hero.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px; /* Neeche ke content se gap */
}
.contact-hero-left h1 {
    font-size: 42px;
    color: #ffd966;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: capitalize;
    animation: slideUpHero 1s ease-out forwards;
}

.contact-hero-left h2 {
    font-size: 1.3rem;
    color: #f0f0f0;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    animation: slideUpHero 1s ease-out 0.4s forwards;
}

@keyframes slideUpHero {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========== CONTACT PAGE CLEAN CSS ========== */

.contact-page-section {
    padding: 30px 4%;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch; /* Maintains equal height */
    margin-bottom: 40px;
}

/* --- Left Side: Info Card --- */
.contact-info-card {
    flex: 1;
    background-color: #fffaf5; /* Soft Light Theme Orange */
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #ffe0b2; /* Sleek Hairline Border */
}

.contact-info-card h2 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.info-items-container { margin-top: 25px; }

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none !important; /* No Underlines */
    color: inherit;
    transition: 0.3s;
}

.info-item i {
    font-size: 20px;
    color: #ff9800;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ffe0b2;
}

.info-item div h4 { margin: 0; font-size: 1rem; color: #333; }
.info-item div p { margin: 3px 0 0; color: #666; font-size: 0.95rem; }

/* ||| Social Links Start ||| */
.social-links-area {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ffe0b2;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.social-links-area a {
    text-decoration: none !important;
    color: #ff9800;
    font-size: 50px;
    transition: 0.3s ease;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links-area a:hover {
    color: #e68a00;
    transform: translateY(-3px);
}

/* --- Right Side: Form Area --- */
.hero-right.contact-form-area {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #ffe0b2; /* Sleek Hairline Border */
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.contact-form-area .form h3 { font-size: 1.6rem; margin-bottom: 10px; }

.contact-form-area input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    outline: none;
}

.contact-form-area .phone {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.contact-form-area .phone input { border: none; margin-bottom: 0; }

.contact-form-area button {
    width: 100%;
    padding: 14px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* --- Map Container --- */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ffe0b2;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 992px) {
    .contact-wrapper { flex-direction: column; }
    .contact-info-card, .hero-right.contact-form-area { width: 100%; flex: none; }
}

/* Mobile responsive check */
@media (max-width: 480px) {
    .social-links-area a {
        font-size: 40px; /* Mobile par thoda adjust kiya hai */
    }
}